home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / lseek.c < prev    next >
C/C++ Source or Header  |  1988-07-29  |  1KB  |  70 lines

  1. /* 
  2.  * lseek.c --
  3.  *
  4.  *    Procedure to map from Unix access system call to Sprite.
  5.  *
  6.  * Copyright 1986 Regents of the University of California
  7.  * All rights reserved.
  8.  */
  9.  
  10. #ifndef lint
  11. static char rcsid[] = "$Header: lseek.c,v 1.4 88/07/29 17:40:26 ouster Exp $ SPRITE (Berkeley)";
  12. #endif not lint
  13.  
  14. #include <sprite.h>
  15. #include "compatInt.h"
  16. #include <fs.h>
  17. #include <sys/file.h>
  18. #include <errno.h>
  19.  
  20.  
  21. /*
  22.  *----------------------------------------------------------------------
  23.  *
  24.  * lseek --
  25.  *
  26.  *    procedure for Unix lseek call. 
  27.  *
  28.  * Results:
  29.  *    the old offset if the IOC_Reposition call was successful.
  30.  *    UNIX_ERROR is returned if IOC_Reposition failed.
  31.  *
  32.  * Side effects:
  33.  *    None.
  34.  *
  35.  *----------------------------------------------------------------------
  36.  */
  37.  
  38. long
  39. lseek(filedes, offset, whence)
  40.     int filedes;            /* array of stream identifiers */
  41.     long offset;
  42.     int whence;
  43. {
  44.     ReturnStatus    status;
  45.     int          base;
  46.     int            newOffset;
  47.  
  48.     switch(whence) {
  49.     case L_SET:
  50.         base = IOC_BASE_ZERO;
  51.         break;
  52.     case L_INCR:
  53.         base = IOC_BASE_CURRENT;
  54.         break;
  55.     case L_XTND:
  56.         base = IOC_BASE_EOF;
  57.         break;
  58.     default:
  59.         errno = EINVAL;
  60.         return(UNIX_ERROR);
  61.     }
  62.     status = Ioc_Reposition(filedes, base, (int) offset, &newOffset);
  63.     if (status != SUCCESS) {
  64.     errno = Compat_MapCode(status);
  65.     return(UNIX_ERROR);
  66.     } else {
  67.     return(newOffset);
  68.     }
  69. }
  70.